* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #080808;
  color: #fff;
}

#header {
  width: 100%;
  height: 100px;
  background: rgb(41, 41, 41);
}

.heading {
  text-align: center;
  position: relative;
  top: 25px;
  justify-content: center;
  background: content-box radial-gradient(crimson, skyblue);
  max-width: 30%;
  height: 50px;
  border-radius: 20px;
  animation: 6s linear 0s infinite alternate sun-rise;
  box-shadow: 0px 0px 15px skyblue;
}

@keyframes sun-rise {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(146vh);
  }
}

.heading h2 {
  padding-top: 10px;
  padding-bottom: 100px;
  animation: .5s linear 1s infinite alternate slidein;
}

.sub-heading {
  margin: 80px 25%;
  text-align: center;
  font-style: italic;
  font-size: 20px;
}

.topic-body{
  margin-top: 100px;
  margin-bottom: 30px;
}

.data {
  width: 100%;
  height: 100%;
  max-width: 90%;
  margin-left: 5%;
}

.topic {
  padding: auto;
  width: max-content;
  height: 30px;
  background: content-box radial-gradient(rgb(20, 33, 220), rgb(147, 235, 135));
  box-shadow: 0px 0px 10px #97f7a7;
  border-radius: 3px;
  font-weight: bolder;
}

.topic p {
  padding-top: 7px;
  text-align: center;
  margin-top: 10px;
}

.data1 {
  margin-top: 20px;
  word-spacing: 5px;
}